| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { useParams } from 'common'
- import { useRouter } from 'next/router'
- import { useEffect } from 'react'
- import { PageContainer } from 'ui-patterns/PageContainer'
- import { PageSection, PageSectionContent } from 'ui-patterns/PageSection'
- import { GenericSkeletonLoader } from 'ui-patterns/ShimmeringLoader'
- import { DefaultLayout } from '@/components/layouts/DefaultLayout'
- import { ProjectIntegrationsLayoutDispatch } from '@/components/layouts/ProjectIntegrationsLayoutDispatch'
- import type { NextPageWithLayout } from '@/types'
- const IntegrationPage: NextPageWithLayout = () => {
- const router = useRouter()
- const { ref, id } = useParams()
- useEffect(() => {
- // Always redirect to the overview page since this route should not render content
- if (router?.isReady) {
- router.replace(`/project/${ref}/integrations/${id}/overview`)
- }
- }, [router, ref, id])
- return (
- <PageContainer size="full">
- <PageSection>
- <PageSectionContent>
- <GenericSkeletonLoader />
- </PageSectionContent>
- </PageSection>
- </PageContainer>
- )
- }
- IntegrationPage.getLayout = (page) => (
- <DefaultLayout>
- <ProjectIntegrationsLayoutDispatch>{page}</ProjectIntegrationsLayoutDispatch>
- </DefaultLayout>
- )
- export default IntegrationPage
|